summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-05-25 20:12:51 +0200
committerGitHub <noreply@github.com>2023-05-25 20:12:51 +0200
commita596c6e4388ed86af983364c961dcb52ab95e4d3 (patch)
tree0ae83d75dd15110bbc97d0711fa1792cef3ea287
parentMerge pull request #10452 from liamwhite/ibgc (diff)
parentDon't exit when using "-u" option in yuzu-cmd (diff)
downloadyuzu-a596c6e4388ed86af983364c961dcb52ab95e4d3.tar
yuzu-a596c6e4388ed86af983364c961dcb52ab95e4d3.tar.gz
yuzu-a596c6e4388ed86af983364c961dcb52ab95e4d3.tar.bz2
yuzu-a596c6e4388ed86af983364c961dcb52ab95e4d3.tar.lz
yuzu-a596c6e4388ed86af983364c961dcb52ab95e4d3.tar.xz
yuzu-a596c6e4388ed86af983364c961dcb52ab95e4d3.tar.zst
yuzu-a596c6e4388ed86af983364c961dcb52ab95e4d3.zip
-rw-r--r--src/yuzu_cmd/yuzu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index ca5ce0f53..7b6d49c63 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -283,7 +283,7 @@ int main(int argc, char** argv) {
break;
case 'u':
selected_user = atoi(optarg);
- return 0;
+ break;
case 'v':
PrintVersion();
return 0;